![]() |
PATH![]() |
When you set up an applet security data structure, you must use the JMNetworkSecurityOptions type to specify the security level for the applet when accessing a network.
enum JMNetworkSecurityOptions {
eNoNetworkAccess = 0,
eAppletHostAccess,
eUnrestrictedAccess
};
In addition, you must use the JMFileSystemOptions type to specify the security level allowed for applets accessing the local file system.
enum JMFileSystemOptions {
eNoFSAccess = 0,
eLocalAppletAccess,
eAllFSAccess
};
See The AWT Context for more information about using these security indicator types.